https://github.com/InteractiveBrokers/tws-api/issues/2#issuecomment-141953319 I'm somewhat sceptical about the wisdom of implementing this proposal, and I think IB should consider it very cautiously before finally deciding to go for it. I note that in response to my recent issue #199, @ksmaguineib indicated that a switch to protocol buffers is already planned, and I guess with this post I'm trying to emphasise some aspects of it that perhaps haven't been given adequate consideration. The first thing to say is that the current protocol mechanism has served very well for a good long time (I've been using the API since 2003 and never had problems with it; I also did my own implementation of the API starting in 2004 and have really had no trouble modifying it to keep it up to date as the API has evolved). The old adage 'if it ain't broke, don't fix it' comes to mind. Yes the code is a bit ugly and lengthy, but it's very simple and straightforward (and could be made a bit less ugly if some of the now-redundant version checks were removed). It's really no more difficult to add a new field or a new message type than it is to make the corresponding proto buff language declarations (in fact I'd say it's easier!). The current mechanism has the following advantages: Messages are human-readable It's fully backwards- and forwards-compatible It's completely language-independent (contrary to what @benjumanji says in his initial post, I'd be staggered if any language had trouble parsing the messages) Easy to write socket data to a log file without having to be interpreted first Very easy to add new fields and new message types Note that this language-independence has resulted in a number of third-party implementations for various languages, and a number of people (I don't know how many) rely on these. For a move to protocol buffers, the following points need careful consideration: It would be necessary for TWS to support both the current protocol and the new protocol for a period. It's easy to say that it would only be necessary for a couple of version updates, but there'd have to be some surefire way of making sure that all API users were aware of this change. Bear in mind that people with working live systems are (quite rightly) very reluctant to change anything that might destabilise things (that's why there's always a lot of resentment when IB say you can no longer use version X of TWS). Also bear in mind that there is an industry of developers producing bespoke API-based systems for clients who don't have the programming skills to do it themselves: an incompatible protocol change would mean that all these systems would need to be modified and re-tested (yes, I know the actual work should be trivial, but it would cause a lot of hassle for the customers) The range of languages supported by protocol buffers is limited, which may cause problems for third-party API implementers if their chosen language isn't currently supported Switching to protocol buffers would be quite a significant effort, that would have to be repeated for each API. The question is, is it worth it? What real benefit does it bring? ----------------------------------------------------------------------------------- https://github.com/InteractiveBrokers/tws-api/issues/2#issuecomment-340619917 I stand by the comments I made on 21 Sep 2015. I think trying to change the serialization mechanism will only end in tears, and I don't see any real benefit except perhaps for people doing a new implementation in a language that supports the proposed new mechanism. The arguments made by @louis-shao are very debatable, and nothing like as clear cut as he seems to believe. I don't have time to address them point by point now, but if need be I will do so. This would be a very substantial development to get right - not only for IB but for all the other people who have private implementations in a variety of languages (that includes me: see here. I would much prefer IB to put their effort into improved functionality. ----------------------------------------------------------------------------------- https://github.com/InteractiveBrokers/tws-api/issues/2#issuecomment-340735285 The trouble with allowing an additional format is that IB then have to maintain two very different approaches instead of a single (time-tested) one. This would be labour-intensive and certainly would be error prone, though problems caused by such errors should be entirely confined to IB during the beta stages. When you talk about 'simplifying the data processing', I really don't know what you mean. Here are my possible interpretations: If you're talking about the actual API interface, I agree that there are criticisms that can be made of IB's API, but changing it to improve those issues would be grossly irresponsible (because of the thousands of API client programs around the globe), unless it were done as a new API developed, supported and maintained alongside the 'classic' API, which would be another error-prone increased workload for IBI. If you're talking about the processing that's done within IB's code, underneath the API surface, I agree that using something that generates the protocol machine from textual definitions would greatly reduce the number of lines of code in the API implementation, but does this actually help anyone? Performance is really not an issue: my performance tests indicate that the per-tick processing overhead of IB's C# API is around 20 microseconds, so for a practical peak rate of a couple of thousand ticks per second that's say 4 or 5 milliseconds total elapsed (single) CPU time - who cares? (Actually my implementation is about 10 times as fast, so I guess I do care, but it makes no practical difference.) The number of lines of code is pretty much irrelevant. The vast bulk of the code is of the form 'add this field to the outgoing message' or 'parse this field from the incoming message': once written and tested, it never changes. There is of course some actual logic, but that would be the case no matter what wire protocol is used. Bandwidth is also largely irrelevant: people often assume that sending binary is somehow smaller than sending text, and this simply isn't necessarily the case. Most numbers sent via the API are prices or sizes/volumes. The prices are typically 1.32117 (current GBP/USD) or 2571.75 (current ESZ7) so these are only 8 bytes including the zero byte field terminator, ie the same as a binary double (though presumably protobuf includes some kind of field identifier as well, so it's actually less efficient). Bid, ask and last sizes tend to be rather small, though volumes can be 8 digits and so are often longer than binary Int32's though these are relatively infrequent. One can invent clever encodings that minimise the length of binary items, and maybe protobuf uses such a scheme, but I doubt it would make a big difference. Also when I looked at the actual data received by TWS from IB's servers back in 2003, it seemed to me that the messages are actually compressed: this is viable because the data is textual and contains huge amounts of repeated strings, whereas compressing a binary data stream would likely not be helpful. And if you're talking about higher-level processing of the data received from the API, again I agree that this is something that one might want to do, and I do this myself in a higher level component which presents a totally different API from IB's. As an example of this, my higher level component provides the ability to retrieve historical data of any duration for any bar size (including bars based on volume, tick volume and price movement), and this uses the base API facilities. Now I'd be perfectly happy for IB to implement such a higher-level API as a separate layer, but I think it would be a mistake to incorporate this sort of thing into the base API itself - that would be rather akin to providing SQL query capability in a file system device driver. All of these are exactly why I've always had my own API implementation, to correct the deficiencies that I perceive in IB's. But my own implementation uses the same wire format as IB's (of course): that simply isn't a problem. Your references to PySC2 seem to me to fall into the third category above, ie building higher-level abstractions over the StarCraft API. I'd be grateful if you could give an actual example of what you have in mind with the IB API, and explain why you think changing either the wire format or the API itself would help. -----------------------------------------------------------------------------------